home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 May & June / Amiga-CD 1997 #5-6.iso / demos&programme / turbocalc / turbocalc4demo.lha / TurboCalc / ARexx / Hello.rexx next >
OS/2 REXX Batch file  |  1996-09-30  |  360b  |  19 lines

  1. /*
  2.  * Hello.rexx
  3.  * Example-ARexx-Script of TurboCalc2.0   © 1993 by M.Friedrich
  4.  *
  5.  * This example asks for your name (within TurboCalc)
  6.  * reads the name and prints it (in your shell)
  7.  */
  8.  
  9. Options FailAt 0
  10. Options Results
  11.  
  12. ADDRESS TCALC
  13.  
  14. 'INPUT "Please enter your name" "Your Name:" C3'
  15. GETVALUE C3
  16.  
  17. say "Hello" RESULT||", have a lot of fun with TurboCalc"
  18.  
  19.